■キーワード検索
<form action="search.php" method="get">
キーワード：<input type="text" name="keyword" size="40">
<input type="submit" value="検索">
</form>


■キーワード＋プルダウン（PHPで描画）
<form action="search.php" method="get">
キーワード：<input type="text" name="keyword" size="40">
<select id="genreid" name="genreid">
<option value="0">すべての商品</option>
<?php foreach ($hits as $hit) { ?>
<option value="<?php echo h($hit->genreId); ?>">
<?php echo h($hit->genreName); ?>
</option>
<?php } ?>
<input type="submit" value="検索">
</select>
</form>